e09fbc0f60a196036bebec785bb2ef843df93caa,src/core/org/apache/jmeter/gui/action/ActionRouter.java,ActionRouter,performAction,#ActionEvent#,68

Before Change


				}
			}
		} catch (NullPointerException er) {
			log.error("performAction(" + e.getActionCommand() + ") " + e.toString() + " caused", er);
			JMeterUtils.reportErrorToUser("Sorry, this feature (" + e.getActionCommand() + ") not yet implemented");
		}
	}

After Change


	}

	private void performAction(final ActionEvent e) {
		String actionCommand = e.getActionCommand();
		try {
			try {
			    GuiPackage.getInstance().updateCurrentGui();